home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / utils / file / logiso.000 / logiso / RCS / Makefile,v < prev    next >
Encoding:
Text File  |  1995-03-24  |  1.2 KB  |  86 lines

  1. head    1.3;
  2. access;
  3. symbols
  4.     VER_0_3:1.3
  5.     VER_0_2:1.2;
  6. locks; strict;
  7. comment    @# @;
  8.  
  9.  
  10. 1.3
  11. date    95.03.24.11.44.17;    author coulter;    state Exp;
  12. branches;
  13. next    1.2;
  14.  
  15. 1.2
  16. date    95.02.13.20.56.00;    author coulter;    state Exp;
  17. branches;
  18. next    1.1;
  19.  
  20. 1.1
  21. date    95.02.11.13.17.17;    author coulter;    state Exp;
  22. branches;
  23. next    ;
  24.  
  25.  
  26. desc
  27. @Makefile for isofs.  Will add stuff for logging, ioctl commands.
  28. @
  29.  
  30.  
  31. 1.3
  32. log
  33. @Checkin version for 0.3 distribution.
  34. @
  35. text
  36. @#
  37. # Makefile for the linux isofs-filesystem routines.
  38. #
  39. # Note! Dependencies are done automagically by 'make dep', which also
  40. # removes any old dependencies. DON'T put your own dependencies here
  41. # unless it's something special (ie not a .c file).
  42. #
  43. # Note 2! The CFLAGS definitions are now in the main makefile...
  44.  
  45. .c.s:
  46.     $(CC) $(CFLAGS) -S $<
  47. .c.o:
  48.     $(CC) $(CFLAGS) -c $<
  49. .s.o:
  50.     $(AS) -o $*.o $<
  51.  
  52. OBJS=    ioctl.o namei.o inode.o file.o dir.o util.o rock.o symlink.o
  53.  
  54. isofs.o: $(OBJS)
  55.     $(LD) -r -o isofs.o $(OBJS)
  56.  
  57. dep:
  58.     $(CPP) -M *.c > .depend
  59.  
  60. #
  61. # include a dependency file if one exists
  62. #
  63. ifeq (.depend,$(wildcard .depend))
  64. include .depend
  65. endif
  66. @
  67.  
  68.  
  69. 1.2
  70. log
  71. @Checkin working version.  Try to make it dynamic now.
  72. @
  73. text
  74. @@
  75.  
  76.  
  77. 1.1
  78. log
  79. @Initial revision
  80. @
  81. text
  82. @d17 1
  83. a17 1
  84. OBJS=    namei.o inode.o file.o dir.o util.o rock.o symlink.o
  85. @
  86.